crypto/cipher.gcmFieldElement.high (field)

18 uses

	crypto/cipher (current package)
		gcm.go#L65: 	low, high uint64
		gcm.go#L258: 	return gcmFieldElement{x.low ^ y.low, x.high ^ y.high}
		gcm.go#L263: 	msbSet := x.high&1 == 1
		gcm.go#L266: 	double.high = x.high >> 1
		gcm.go#L267: 	double.high |= x.low << 63
		gcm.go#L294: 		word := y.high
		gcm.go#L302: 			msw := z.high & 0xf
		gcm.go#L303: 			z.high >>= 4
		gcm.go#L304: 			z.high |= z.low << 60
		gcm.go#L314: 			z.high ^= t.high
		gcm.go#L327: 		y.high ^= binary.BigEndian.Uint64(blocks[8:])
		gcm.go#L404: 		y.high ^= uint64(len(nonce)) * 8
		gcm.go#L407: 		binary.BigEndian.PutUint64(counter[8:], y.high)
		gcm.go#L419: 	y.high ^= uint64(len(ciphertext)) * 8
		gcm.go#L424: 	binary.BigEndian.PutUint64(out[8:], y.high)